home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-06-30 | 5.2 KB | 166 lines |
- /*
- * @(#)EtchedBorder.java 1.7 98/02/02
- *
- * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
- *
- * This software is the confidential and proprietary information of Sun
- * Microsystems, Inc. ("Confidential Information"). You shall not
- * disclose such Confidential Information and shall use it only in
- * accordance with the terms of the license agreement you entered into
- * with Sun.
- *
- * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
- * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
- * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
- * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
- * THIS SOFTWARE OR ITS DERIVATIVES.
- *
- */
- package com.sun.java.swing.border;
-
- import java.awt.Graphics;
- import java.awt.Insets;
- import java.awt.Rectangle;
- import java.awt.Color;
- import java.awt.Component;
-
- /**
- * A class which implements a simple etched border which can
- * either be etched-in or etched-out. If no highlight/shadow
- * colors are initialized when the border is created, then
- * these colors will be dynamically derived from the background
- * color of the component argument passed into the paintBorder()
- * method.
- * <p>
- * Warning: serialized objects of this class will not be compatible with
- * future swing releases. The current serialization support is appropriate
- * for short term storage or RMI between Swing1.0 applications. It will
- * not be possible to load serialized Swing1.0 objects with future releases
- * of Swing. The JDK1.2 release of Swing will be the compatibility
- * baseline for the serialized form of Swing objects.
- *
- * @version 1.7 02/02/98
- * @author David Kloba
- * @author Amy Fowler
- */
- public class EtchedBorder extends AbstractBorder
- {
- /** Raised etched type. */
- public static final int RAISED = 0;
- /** Lowered etched type. */
- public static final int LOWERED = 1;
-
- protected int etchType;
- protected Color highlight;
- protected Color shadow;
-
- /**
- * Creates a lowered etched border whose colors will be derived
- * from the background color of the component passed into
- * the paintBorder method.
- */
- public EtchedBorder() {
- this(LOWERED);
- }
-
- /**
- * Creates an etched border with the specified etch-type
- * whose colors will be derived
- * from the background color of the component passed into
- * the paintBorder method.
- * @param etchType the type of etch to be drawn by the border
- */
- public EtchedBorder(int etchType) {
- this(etchType, null, null);
- }
-
- /**
- * Creates a lowered etched border with the specified highlight and
- * shadow colors.
- * @param highlight the color to use for the etched highlight
- * @param shadow the color to use for the etched shadow
- */
- public EtchedBorder(Color highlight, Color shadow) {
- this(LOWERED, highlight, shadow);
- }
-
- /**
- * Creates an etched border with the specified etch-type,
- * highlight and shadow colors.
- * @param etchType the type of etch to be drawn by the border
- * @param highlight the color to use for the etched highlight
- * @param shadow the color to use for the etched shadow
- */
- public EtchedBorder(int etchType, Color highlight, Color shadow) {
- this.etchType = etchType;
- this.highlight = highlight;
- this.shadow = shadow;
- }
-
- /**
- * Paints the border for the specified component with the
- * specified position and size.
- * @param c the component for which this border is being painted
- * @param g the paint graphics
- * @param x the x position of the painted border
- * @param y the y position of the painted border
- * @param width the width of the painted border
- * @param height the height of the painted border
- */
- public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) {
- int w = width;
- int h = height;
-
- g.translate(x, y);
-
- g.setColor(etchType == LOWERED? getShadowColor(c) : getHighlightColor(c));
- g.drawRect(0, 0, w-2, h-2);
-
- g.setColor(etchType == LOWERED? getHighlightColor(c) : getShadowColor(c));
- g.drawLine(1, h-3, 1, 1);
- g.drawLine(1, 1, w-3, 1);
-
- g.drawLine(0, h-1, w-1, h-1);
- g.drawLine(w-1, h-1, w-1, 0);
-
- g.translate(-x, -y);
- }
-
- /**
- * Returns the insets of the border.
- * @param c the component for which this border insets value applies
- */
- public Insets getBorderInsets(Component c) {
- return new Insets(2, 2, 2, 2);
- }
-
- /**
- * Returns whether or not the border is opaque.
- */
- public boolean isBorderOpaque() { return true; }
-
- /**
- * Returns which etch-type is set on the etched border.
- */
- public int getEtchType() {
- return etchType;
- }
-
- /**
- * Returns the highlight color of the etched border.
- */
- public Color getHighlightColor(Component c) {
- return highlight != null? highlight :
- c.getBackground().brighter();
- }
-
- /**
- * Returns the shadow color of the etched border.
- */
- public Color getShadowColor(Component c) {
- return shadow != null? shadow : c.getBackground().darker();
- }
-
- }
-